/* styles.css */
* {
	border: 0px none;
/*	border: black 0.125px solid; /* for debugging layout*/
	margin: 0px;
	padding: 0px;
}

body, html {
    height: 100%;
    width: 100%;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header {
    width: 100%;
    height: 15vh; /* 10% of viewport height */
    background-color: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
/*    font-size: 1.5em;	*/
    position: fixed;
    top: 0;
    left: 0;
}

.container {
    display: flex;
    width: 100%;
/*    max-width: 1200px; /* Optional: limit the max width */
    margin-top: 15vh; /* Offset for the fixed header */
}

.left-column, .right-column {
    width: 25%; /* left and right column width */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    background-color: #e9e9e9; /* Optional: background color for columns */
}

.middle-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 50%; /* Center column width */
    text-align: center;
}

.middle-container input[name="iUID"],
.middle-container input[name="iPAS"],
.middle-container input[name="iVER"] {
    width: 50%;
    padding: 16px;
    margin: 16px 0;
    border-radius: 4px;
    border: 1px solid #ccc;
    text-align: center;
}

.middle-container input[name="LogMeOut"] {
    width: 80%;
    padding: 10px;
    border-radius: 4px;
    border: none;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
}

.middle-container input[name="LogMeOut"]:hover {
    background-color: #45a049;
}

.debug {
	width: 90%;
}